* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: -apple-system, sans-serif;
}

:root {
    --bg-color: #000000;
    --second-bg-color: #111111;
    --text-color: #fff;
    /* --main-color: rgb(173, 73, 225); */
    --main-color: rgb(200, 0, 54);
    /* --main-color: rgb(160, 35, 52); */
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
}

section {
    min-height: 100vh;
    padding: 10rem 8% 2rem;
}




/* ******************Footer Section********************* */



/* Scrollbar */

::-webkit-scrollbar {
    width: 15px;
}



@media (max-width:991px) {
    #menu-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        right: -100%;
        width: 255px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        background: var(--bg-color);
        transition: all 0.5s ease;
    }

    .navbar a {
        display: block;
        padding: 17px;
        font-size: 22px;
    }

    .navbar.active {
        right: 0;
    }

    .header {
        padding: 2rem 3%;
    }

    section {
        padding: 10rem 3%;
    }

    .services {
        padding: 7rem
    }

    .about-content h2 {
        margin-top: 2rem;
        text-align: center;
        font-size: 5rem;
    }

    .review .wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer {
        padding: 40px 0;
    }
}

@media (max-width:786px) {
    .home {
        flex-direction: column;
    }

    .home-content h3 {
        font-size: 4.5rem;
        margin-top: 1.5rem;
    }

    .home-content h1 {
        font-size: 5rem;
        margin-top: 1.5rem;
    }

    .home-content {
        order: 2;
    }

    .home-img img {
        width: 70vw;
        margin-top: 4rem;
    }

    .about {
        flex-direction: column;
    }

    .about-img img {
        width: 70vw;
        margin-top: 4rem;
    }

    .about-content {
        text-align: center;
    }

    .about-content h2 {
        text-align: center;
    }

    .services h2 {
        margin-bottom: 3rem;
    }
}

@media (max-width:617px) {
    .home-img img {
        width: 80vw;
        margin-top: 8rem;
    }

    .about-img img {
        width: 70vw;
        margin-top: 4rem;
    }
}

@media (max-width:450px) {
    html {
        font-size: 50%;
    }

    .counter-wrapper {
        display: flex;
        gap: 2rem;
    }



}


.counter-wrapper {
    display: flex;
    gap: 4rem;
    position: relative;
    top: 50px;
    margin-bottom: 50px;

}

.counter {

    font-size: 3.5rem;
    color: var(--main-color);
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.counter {

    font-size: 3.5rem;
    color: var(--main-color);
}

.counter {

    font-size: 3.5rem;
    color: var(--main-color);
}


.countery p {



    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;



    font-style: normal;
    position: relative;
    top: -20px;
    align-items: center;
    font-size: 30px;

}

.countery {

    align-items: center;

    gap: 10px;
}

.numbers-plus {

    display: flex;
    align-items: center;
    gap: 7px;

}



.plus-icon {

    color: var(--main-color);
    font-size: 30px;
    font-weight: 800;
}

.home-pg-p {

    font-size: 25px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 23px;
    font-weight: 200;
}


.ceativecode {

    color: var(--main-color);
    font-size: 20px;
    font-weight: 600;
}




img {
    width: 100%;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 1000ms;
}

.gallery-box-cont ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    max-width: 100%;
    width: 70rem;
    margin-left: 22%;
}

figure {
    margin: 0;
    position: relative;
    overflow: hidden;
}

figure::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: rgba(0, 0, 0, 0.5);
    transform-origin: center;
    opacity: 0;
    transform: scale(2);
    transition: opacity 300ms;
}

figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    place-items: center;
    text-align: center;
    padding: 1rem;
    color: white;
    font-size: 1.2rem;
    z-index: 1;
    opacity: 0;
    transition: opacity 600ms, transform 600ms;
}

a:is(:hover, :focus) figure::after {
    opacity: 1;
}

a:is(:hover, :focus) figcaption {
    opacity: 1;
    transition: opacity 600ms;
}

@media (prefers-reduced-motion: no-preference) {
    figcaption {
        transform: translate3d(0, 2rem, 0);
    }

    figure::after {
        border-radius: 50%;
        opacity: 1;
        transform: scale(0);
        transition: transform 900ms;
    }

    a:is(:hover, :focus) figure::after {
        transform: scale(2.5);
    }

    a:is(:hover, :focus) figcaption {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        transition: opacity 600ms 400ms, transform 600ms 400ms;
    }

    a:is(:hover, :focus) img {
        transform: scale(1.2);
    }
}




.text-container {
    font-size: 24px;
    /* Adjust font size */
    font-family: 'Courier New', Courier, monospace;
    /* Choose a monospaced font for a typing effect */
    white-space: nowrap;
    overflow: hidden;
    /* border-right: 2px solid; Cursor effect */
    width: 22ch;
    /* Adjust width based on text length */
    height: 4.5ch;
    position: relative;
    top: 15px;
}

#animated-text {
    display: inline-block;
    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 5rem;

    color: var(--main-color);
}







.up-scroll-btn {
    position: fixed;
    bottom: 50px;
    right: 50px;
    background-color: var(--bg-color);
    padding: 5px;
    border-radius: 30px;
    z-index: 1000;
}


.bxs-chevrons-up {

    font-size: 30px;
    color: var(--main-color);

}




.flot-whatsapp-btn {
    position: fixed;
    bottom: 100px;
    right: 50px;
    background-color: var(--bg-color);
    padding: 5px;
    border-radius: 30px;
    z-index: 1000;
}


.bxl-whatsapp {

    font-size: 30px;
    color: greenyellow;
}



.flot-instagram-btn {
    position: fixed;
    bottom: 150px;
    right: 50px;
    background-color: var(--bg-color);
    padding: 5px;
    border-radius: 30px;
    z-index: 1000;
}


.flot-instagram-btn i {

    font-size: 30px;
    color: rgb(239, 95, 152);
}


/* Preloader  */

.loader-container {
    width: 1000px;
    height: 1000px;
    z-index: 10001;
}

.loader {
    width: 48px;
    height: 48px;
    display: block;
    margin: 15px auto;
    position: relative;
    color: #FFF;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loader::after,
.loader::before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    width: 24px;
    height: 24px;
    top: 50%;
    left: 50%;
    transform: scale(0.5) translate(0, 0);
    background-color: #FFF;
    border-radius: 50%;
    animation: animloader 1s infinite ease-in-out;
}

.loader::before {
    background-color: #FF3D00;
    transform: scale(0.5) translate(-48px, -48px);
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animloader {
    50% {
        transform: scale(1) translate(-50%, -50%);
    }
}





.lozad {
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.5s ease-in, filter 0.5s ease-in;
}

.lozad[data-loaded="true"] {
    opacity: 1;
    filter: blur(0);
}